home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 076-100 / disk_096 / tek4695 / printertag.asm < prev    next >
Assembly Source File  |  1992-05-06  |  2KB  |  69 lines

  1. ;
  2. ;    Excerpt from Amiga ROM Kernel Reference Manual: Libraries and 
  3. ;    Devices.  Used by permission, 1987, Phil Staub.
  4. ;
  5. ;**************************************************************************
  6. ;                                                                         *
  7. ;    Copyright 1985, Commodore-Amiga Inc. All rights reserved.         *
  8. ;    No part of this program may be reproduced, transmitted            *
  9. ;    transcribed, stored in retrieval system, or translated into       *
  10. ;    any language or computer language, in any form or by any means,   *
  11. ;    electronic, mechanical, magnetic, optical, chemical,              *
  12. ;    manual or ohterwise, without the prior written permission of      *
  13. ;    Commodore-Amiga Incorporated, 983 University Ave. Building #D,    *
  14. ;    Los Gatos, California, 95030                                      *
  15. ;                                                                         *
  16. ;**************************************************************************
  17.     section    printer
  18.  
  19.     include    "exec/types.i"
  20.     include    "exec/nodes.i"
  21.     include    "exec/strings.i"
  22.     include    "devices/prtbase.i"
  23.  
  24.     xref    _Init
  25.     xref    _Expunge
  26.     xref    _Open
  27.     xref    _Close
  28.     xref    _CommandTable
  29.     xref    _DoSpecial
  30.     xref    _Render
  31.  
  32.     xdef    _PEDData
  33.     xdef    .begin
  34.     xdef    _main
  35.  
  36. VERSION    EQU    31
  37. REVISION    EQU    23
  38. .begin:
  39. _main:
  40.     moveq    #0,d0
  41.     rts
  42.     dc.w    VERSION
  43.     dc.w    REVISION
  44. _PEDData:
  45.     dc.l    printerName
  46.     dc.l    _Init
  47.     dc.l    _Expunge
  48.     dc.l    _Open
  49.     dc.l    _Close
  50.     dc.b    PPC_COLORGFX
  51.     dc.b    PCC_YMCB
  52.     dc.b    80
  53.     dc.b    1
  54.     dc.w    4
  55.     dc.l    1024
  56.     dc.l    0
  57.     dc.w    120
  58.     dc.w    120
  59.     dc.l    _CommandTable
  60.     dc.l    _DoSpecial
  61.     dc.l    _Render
  62.     dc.l    60
  63.     dc.l    0
  64.  
  65. printerName:
  66.     dc.b    "Tektronix 4695"
  67.     dc.b    0
  68.     end
  69.